home *** CD-ROM | disk | FTP | other *** search
/ El Mac 9 / El Mac 9.iso / Shareware / Applications / Charting Coach v1.5 / Charting Coach v1.dxr / 00058.ls < prev    next >
Encoding:
Text File  |  1996-04-08  |  395 b   |  17 lines

  1. on mouseUp
  2.   global cycleNo, userNo
  3.   if the doubleClick then
  4.     exit
  5.   end if
  6.   if getAt(cycleNo, userNo) > 1 then
  7.     set the hilite of member "current monthly" to 0
  8.     set the hilite of member "previous monthly" to 1
  9.     go("print monthly previous")
  10.     cursor(0)
  11.   else
  12.     set the hilite of member "previous monthly" to 0
  13.     cursor(0)
  14.     alert("No previous cycles found.")
  15.   end if
  16. end
  17.